home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 7
/
Amiga Format AFCD07 (Dec 1996, Issue 91).iso
/
serious
/
shareware
/
misc
/
cpk
/
arexx
/
zclip_anim2.cpk
< prev
next >
Wrap
Text File
|
1994-09-02
|
613b
|
38 lines
/*
* CPK ARexx communications test; slice the current molecule using
* the hither Z-Clipping plane. This works well with the B-DNA
* structure...
*
* Author: Eric G. Suchanek, Ph.D.
* Copyright © 1994 Eric G. Suchanek, Ph.D. All Rights Reserved
*
* You need to run the CPK program first...
*
*/
Options FailAt 100
Options Results
address cpk1
'VectorMode ON'
'Verbose OFF'
'ZRecalc'
'Zclip ON'
frame_tot = 20
inc = 100 / frame_tot
/* move the plane */
do frame = 0 to frame_tot
cut = frame * inc
say 'clipping is ' cut
'hither ' cut
'render'
/* 'save iff ram:zclip.'frame */
end
exit